From: Roan Kattouw Date: Thu, 25 Aug 2011 10:56:46 +0000 (+0000) Subject: Fix stupid copypaste mistake in r95470 X-Git-Tag: 1.31.0-rc.0~28070 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=64733e700595b78304c437cd37153fa101d9fc3c;p=lhc%2Fweb%2Fwiklou.git Fix stupid copypaste mistake in r95470 --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index bf4b184282..504db295d6 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1913,9 +1913,9 @@ class OutputPage extends ContextSource { $this->mBodytext = ''; if ( $msg instanceof Message ){ - $wgOut->addHTML( $msg->parse() ); + $this->addHTML( $msg->parse() ); } else { - $wgOut->addWikiMsgArray( $msg, $params ); + $this->addWikiMsgArray( $msg, $params ); } $this->returnToMain();